home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 076-100 / scopedisk89 / uut / makefile < prev    next >
Makefile  |  1995-03-19  |  406b  |  21 lines

  1. #
  2. # makefile for various unix-like utilities: strings, head and lc
  3. #
  4. # Copyright 1989 Edwin Hoogerbeets
  5. # This code is freely redistributable as long as no charge other than
  6. # reasonable copying fees is levied for it.
  7.  
  8. #CFLAGS=-n -DDEBUG
  9. #LNDEBUG=-g
  10.  
  11. all: strings head lc
  12.  
  13. strings: strings.o
  14.       ln $(LNDEBUG) strings.o -lc -o $@
  15.  
  16. head: head.o
  17.       ln head.o -lc -o $@
  18.  
  19. lc: lc.o
  20.       ln lc.o -lc -o $@
  21.